type runtime.errorString

44 uses

	runtime (current package)
		alg.go#L166: 		panic(errorString("hash of unhashable type " + toRType(t).string()))
		alg.go#L193: 		panic(errorString("hash of unhashable type " + toRType(t).string()))
		alg.go#L270: 		panic(errorString("hash of unhashable type " + toRType(t).string()))
		alg.go#L309: 			return errorString("hash of unhashable type " + toRType(t).string())
		alg.go#L338: 		return errorString("hash of unhashable type " + toRType(t).string())
		alg.go#L396: 		panic(errorString("comparing uncomparable type " + toRType(t).string()))
		alg.go#L413: 		panic(errorString("comparing uncomparable type " + toRType(t).string()))
		cgocall.go#L605: 		panic(errorString(msg))
		cgocall.go#L613: 		panic(errorString(msg))
		cgocall.go#L623: 			panic(errorString(msg))
		cgocall.go#L630: 			panic(errorString(msg))
		cgocall.go#L641: 			panic(errorString(msg))
		cgocall.go#L656: 			panic(errorString(msg))
		cgocall.go#L685: 			panic(errorString(msg))
		cgocall.go#L711: 				panic(errorString(msg))
		cgocall.go#L721: 			panic(errorString(msg))
		error.go#L76: type errorString string
		error.go#L78: func (e errorString) RuntimeError() {}
		error.go#L80: func (e errorString) Error() string {
		panic.go#L228: var shiftError = error(errorString("negative shift amount"))
		panic.go#L236: var divideError = error(errorString("integer divide by zero"))
		panic.go#L244: var overflowError = error(errorString("integer overflow"))
		panic.go#L251: var floatError = error(errorString("floating point error"))
		panic.go#L258: var memoryError = error(errorString("invalid memory address or nil pointer dereference"))
		panic.go#L300: var rangeDoneError = error(errorString("range function continued iteration after function for loop body returned false"))
		panic.go#L301: var rangePanicError = error(errorString("range function continued iteration after loop body panic"))
		panic.go#L302: var rangeExhaustedError = error(errorString("range function continued iteration after whole loop exit"))
		panic.go#L303: var rangeMissingPanicError = error(errorString("range function recovered a loop body panic and did not resume panicking"))
		pinner.go#L109: 		panic(errorString("runtime.Pinner: argument is nil"))
		pinner.go#L112: 		panic(errorString("runtime.Pinner: argument is not a pointer: " + toRType(etyp).string()))
		pinner.go#L116: 		panic(errorString("runtime.Pinner: object was allocated into an arena"))
		pinner.go#L153: 			panic(errorString("tried to unpin non-Go pointer"))
		pinner.go#L382: 	panic(errorString("runtime.Pinner: found leaking pinned pointer; forgot to call Unpin()?"))
		signal_unix.go#L946: 	panic(errorString(sigtable[gp.sig].name))
		slice.go#L29: 	panic(errorString("makeslice: len out of range"))
		slice.go#L33: 	panic(errorString("makeslice: cap out of range"))
		slice.go#L191: 		panic(errorString("growslice: len out of range"))
		slice.go#L259: 		panic(errorString("growslice: len out of range"))
		string.go#L315: 		panic(errorString("gobytes: length out of range"))
		trace.go#L156: 		return errorString("tracing is already enabled")
		unsafe.go#L45: 	panic(errorString("unsafe.String: len out of range"))
		unsafe.go#L49: 	panic(errorString("unsafe.String: ptr is nil and len is not zero"))
		unsafe.go#L101: 	panic(errorString("unsafe.Slice: len out of range"))
		unsafe.go#L113: 	panic(errorString("unsafe.Slice: ptr is nil and len is not zero"))